.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.images-column {
  flex: 1 1 400px;
  position: relative;
  height: 400px;
}

.images-column img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.images-column img:nth-child(1) {
  top: 0;
  right: 0;
  transform: rotate(-6deg);
  -webkit-transform: rotate(-6deg);
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -o-transform: rotate(-6deg);
}

.images-column img:nth-child(2) {
  top: 120px;
  right: 120px;
  transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);
}

.images-column img:nth-child(3) {
  bottom: 0;
  right: 50px;
  transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
}

.images-column img:hover {
  transform: scale(1.03) rotate(0deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  z-index: 10;
  -webkit-transform: scale(1.03) rotate(0deg);
  -moz-transform: scale(1.03) rotate(0deg);
  -ms-transform: scale(1.03) rotate(0deg);
  -o-transform: scale(1.03) rotate(0deg);
}

.text-column {
  flex: 1 1 450px;
}

.small-title {
  position: relative;
  display: inline-block;
  background-color: #556B2F;
  color: white;
  padding: 6px 18px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 15px;
  overflow: visible;
  z-index: 1;
}


h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #556B2F;
  margin: 0 0 25px 0;
  line-height: 1.1;
}

h3{
  
  color: #556B2F;
  margin: 0 0 25px 0;
  line-height: 1.1;
}

p.description {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #575757;
}

ul.features-list {
  list-style: inside disc;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #444;
  padding-right: 10px;
}

ul.features-list li {
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  background-color: #556B2F;
  color: #fff;
  padding: 16px 60px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.btn:hover {
  background-color: #2E49FF;
}

@media (max-width: 760px) {
  .container {
    flex-direction: column;
    height: auto;
    padding: 15px 10px;
  }

  .images-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    position: static !important;
    height: auto !important;
    margin-bottom: 20px;
  }

  .images-column img {
    position: static !important;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }

  .images-column img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .text-column {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .btn {
    padding: 14px 35px;
    font-size: 1.1rem;
  }
}
